Content Generation
Generate high-quality AI content using these endpoints.
/content/blog
Generate Blog Post
Create a full SEO-optimized blog post with headings, subheadings, and body content.
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
topic |
string | Required | Blog post topic or title |
wordCount |
integer | Optional | Target word count (500–5000, default: 1000) |
tone |
string | Optional | professional | friendly | confident | storytelling |
keywords |
array | Optional | SEO keywords to include naturally |
includeOutline |
boolean | Optional | Return outline alongside full post (default: false) |
Request
{
"topic": "AI in healthcare 2025",
"wordCount": 1500,
"tone": "professional",
"keywords": [
"AI diagnostics",
"medical AI"
],
"includeOutline": true
}
Response 200 OK
{
"id": "cnt_9x2kd7m",
"title": "AI in Healthcare...",
"outline": ["Introduction", ...],
"content": "# AI in Healthcare\n...",
"wordCount": 1487,
"seoScore": 94,
"createdAt": "2025-02-19T..."
}
/content/humanize
Humanize AI Text
Transform AI-generated content into natural, human-sounding text that bypasses AI detection.
Request
{
"text": "The utilization of AI...",
"level": "high",
"preserveTone": true
}
Response 200 OK
{
"original": "The utilization...",
"humanized": "Using AI has become...",
"humanScore": 98,
"aiScore": 2
}
/content/socialGenerate Social Media Post
Create platform-optimized posts for Instagram, LinkedIn, Twitter/X, Facebook, and TikTok.
Request
{ "topic": "product launch announcement", "platform": "instagram", "style": "viral", "includeHashtags": true, "includeEmojis": true, "count": 3 }Response 200 OK
{ "posts": [ { "id": "post_4k9f2a", "content": "🚀 Big news!...", "hashtags": ["#launch",...], "charCount": 218 } ], "platform": "instagram" }Supported Platforms